home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 929 b | 36 lines |
- /*
- * RowState.java 1.0 12 Jan 1997
- *
- * Copyright (c) 1996 Krumel & Associates, Inc. All Rights Reserved.
- *
- * This software is provided as is. Krumel & Associates shall not be liable
- * for any damages suffered by licensee as a result of using, modifying or
- * distributing this software or its derivatives.
- */
-
- package symantec.itools.db.awt;
-
- public class RowState {
- int state;
-
- public final static int CLEAN = 0;
- public final static int NEW = 1;
- public final static int MODIFIED = 2;
- public final static int DELETED = 3;
-
- public int getState() { return state; }
-
- public void markClean() { state = CLEAN; }
-
- public void markNew() { state = NEW; }
-
- public void markModified() {
- if (state != NEW || state != DELETED) {
- state = MODIFIED;
- }
- }
-
- public void markDeleted() {
- state = DELETED;
- }
- }